home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.5 KB | 63 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _PFTYPLS_
- #define _PFTYPLS_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODPlatformTypeSet;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODPlatformTypeSetIterator;
-
-
- //=====================================================================================
- // Class ODPlatformTypeSet
- //=====================================================================================
-
- interface ODPlatformTypeSet : ODObject
- {
- void InitPlatformTypeSet();
-
- void Add(in ODPlatformType type);
-
- void Union(in ODPlatformTypeSet typeSet);
-
- void Remove(in ODPlatformType type);
-
- void Difference(in ODPlatformTypeSet typeSet);
-
- ODBoolean Contains(in ODPlatformType type);
-
- ODULong Count();
-
- ODPlatformTypeSetIterator CreatePlatformTypeSetIterator();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
- releaseorder:
- InitPlatformTypeSet,
- Add,
- Union,
- Remove,
- Difference,
- Contains,
- Count,
- CreatePlatformTypeSetIterator;
-
- };
- #endif
- };
-
- #endif //# _PFTYPLS_
-